59a51e4ae0c6cb7005a29c8d965f615157076c9b,carbon/src/main/java/carbon/widget/CheckedTextView.java,CheckedTextView,drawableStateChanged,#,371

Before Change


        if (rippleDrawable != null && rippleDrawable.getStyle() != RippleDrawable.Style.Background)
            rippleDrawable.setState(getDrawableState());
        if (stateAnimator != null)
            stateAnimator.setState(getDrawableState());
    }

After Change


        super.drawableStateChanged();

        if (drawable != null) {
            int[] myDrawableState = getDrawableState();

            // Set the state of the Drawable
            drawable.setState(myDrawableState);

            invalidate();
        }